home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ MSO2K Folders 1.xpl < prev    next >
Text File  |  2001-09-01  |  2KB  |  71 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="4"
  3. "COUNT"="3"
  4. "UIPATH 1"="System\File System\Folders\Data"
  5. "UIPATH 2"="Program Options\Microsoft Office\MS Office 2000\Data Folders"
  6. "NAME"="Office 2000 Folders #1"
  7. "VERSION"="1.15"
  8. "LANGUAGE"="VBScript"
  9. "TEXT 1"="Templates"
  10. "TEXT 2"="Shared Templates"
  11. "TEXT 3"="Queries"
  12. "DESCRIPTION 1"="You can alter the location of different MS Office folders here."
  13. "DESCRIPTION 2"="Please exit all Office programs before changing this settings."
  14. "AUTHOR"="Xteq Systems"
  15. "CONTACTURL"="http://www.xteq.com"
  16. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  17. "COMMENT 1"=" "
  18.  
  19.  
  20. sP="HKEY_CURRENT_USER\Software\Policies\Microsoft\Office\9.0\Common\General\"
  21. sTMP="UserTemplates" 'STR W9x - xSTR WNT
  22. sSTM="SharedTemplates" 
  23. sQRY="UserQueriesFolder"
  24. '"WorkgroupThemes"
  25.  
  26. sPCheck="HKCU\Software\Microsoft\Office\9.0\"
  27. Sub Plugin_Initialize 
  28. if RegPathExists(sPCheck) then
  29.   s=RegReadValue(sP & sTMP)
  30.   SetUIElement 1,s
  31.  
  32.   s=RegReadValue(sP & sSTM)
  33.   SetUIElement 2,s
  34.  
  35.   s=RegReadValue(sP & sQRY)
  36.   SetUIElement 3,s
  37. else
  38.   Disable
  39. end if
  40. End Sub
  41.  
  42. Sub Plugin_CheckData(ElementIndex)
  43. End Sub
  44.  
  45. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  46.  Call Wrt(1,sP & sTMP)
  47.  Call Wrt(2,sP & sSTM)
  48.  Call Wrt(3,sP & sQRY)
  49.  
  50.  Call Logoff()
  51. End Sub
  52.  
  53.  
  54. Sub Wrt(ITM,VAL)
  55.  s=GetUIElement(ITM)
  56.  if len(s)>0 then 
  57.   
  58.     if Right(s,1)="\" then
  59.        s=left(s,len(s)-1)
  60.     end if
  61.     Call RegWriteValue(VAL,s,1)
  62.  else
  63.     s=RegReadValue(VAL)
  64.     if IsEmpty(s)=false then Call RegDeleteValue(VAL)
  65.  end if
  66. end sub
  67.  
  68.  
  69. Sub Plugin_Terminate 
  70. End Sub
  71.